home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 6 / FM Towns Free Software Collection 6.iso / t_os / cdplay_y / cdplay next >
Text File  |  1993-07-08  |  639b  |  37 lines

  1. # マクロ定義
  2.  
  3. cc        =f:run386 h:\hc386\bin\hcd386p
  4. link    =f:run386 h:\hc386\bin\tlinkp
  5.  
  6. hce        =h:hce
  7. na        =h:na
  8. tbios    =h:tbios
  9. fmc        =h:fmcfrb
  10. cdrom    =h:cdrfrb
  11. snd        =h:snd
  12. hcopy    =h:hcopy
  13. tos        =h:t_os
  14. tif        =h:tifflib
  15. vft        =h:vectcg_h
  16. gp        =h:getpath
  17.  
  18. # ソースファイル
  19.  
  20. main    =main
  21. file1    =cdp
  22. file2    =pad
  23.  
  24. # 手順
  25.  
  26. $(main).obj     :        $(main).c
  27. $(cc) $(main).c
  28.  
  29. $(file1).obj     :        $(file1).c
  30. $(cc) $(file1).c
  31.     
  32. $(file2).obj     :        $(file2).c
  33. $(cc) $(file2).c
  34.  
  35. $(main).exp     :        $(main).obj    $(file1).obj $(file2).obj
  36. $(link) $(main).obj $(file1).obj $(file2).obj -lib $(hce) $(tbios) $(fmc) $(snd) $(cdrom) -pack -stack 160000
  37.